home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr37
/
bnu_x.zip
/
BNUUTIL.ZIP
/
FUTIL.ZIP
/
MAKEFILE
< prev
Wrap
Text File
|
1989-06-29
|
611b
|
38 lines
#
# Makefile for FUTIL
#
# Assumes NDMAKE 4.50 or a compatible MAKE utility
#
.asm.obj:
${AS} ${AFLAGS} $*.asm;
OBJS=futil.obj
VPATH=
# Uncomment and comment out the appropriate section ...
# Following is the MASM version
#
#AS=masm
#LD=link
#AFLAGS=/ML /W2 /Zi
#LFLAGS=/CO/MAP/LI/NOI
#
#futil.com: ${OBJS}
# ${LD} ${LFLAGS} ${OBJS},futil.exe;
# exe2bin futil.exe futil.com
# del futil.exe
#
#
# Following is the TASM version
# Comment out the above and uncomment below ...
#
AS=tasm
LD=tlink
AFLAGS=/ml /zi
LFLAGS=/t /v /m
futil.com: ${OBJS}
${LD} ${LFLAGS} ${OBJS}